home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / 8bit / os / ramboot3.txt < prev    next >
Text File  |  1995-04-22  |  1KB  |  45 lines

  1.  This is a fixed version of the 
  2. RAMBOOT3 file that's distributed 
  3. with the official release archive of 
  4. MYDOS v4.50. The program initializes 
  5. the RAMDISK, copies DUP.SYS and 
  6. MEM.SAV to it, then finishes by 
  7. copying any files it finds in a 
  8. subdirectory named RAMDISK. 
  9.  
  10.  Due to a transcription error in the 
  11. source code, the copy routines work 
  12. much slower than they should. If 
  13. you've been using this program and 
  14. have been wondering why it takes so 
  15. long, then try this one. Rename 
  16. RMBOOT3A.AUT to AUTORUN.SYS (or 
  17. whatever you need for a Bootfile 
  18. name.) 
  19.  
  20.  Following is the section of code 
  21. from the original RAMBOOT3.M65 that 
  22. has been changed: 
  23.  
  24. 3540 ;COPY DUP.SYS FROM D1: TO D8: 
  25. 3550 ; 
  26. 3560 COPIES LDX #$30 
  27. 3570     LDA #12 
  28. 3580     STA ICMD,X 
  29. 3590     JSR CIOV 
  30. 3600     JSR CLOSIT 
  31. 3610     SEC  
  32. 3620     LDA MEMTOP 
  33. 3630     SBC #BSS&255 
  34. 3640     STA BUFLEN 
  35. 3650     LDA MEMTOP+1 
  36. 3660     SBC #BSS/256 
  37. 3661 ;bug fix! 
  38. 3662 ;following was STA BUFLEN 
  39. 3670     STA BUFLEN+1 
  40.  
  41.  
  42.  Hope you find this useful. 
  43.  
  44.  >>don lebow 10/92 
  45.